/* Hero Section */
.ai-hero-section {
    position: relative;
    padding: 80px 0;
    background: #0c0b0e;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 6px 18px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.hero-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(12, 11, 14, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 252, 13, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

.ai-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.ai-illustration:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.ai-illustration img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-illustration:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(194, 252, 13, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 252, 13, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.bg-grid:nth-child(2) {
    animation-delay: 5s;
    opacity: 0.5;
}

.bg-grid:nth-child(3) {
    animation-delay: 10s;
    opacity: 0.3;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .ai-illustration {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .ai-hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .ai-illustration {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .ai-hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-tag {
        font-size: 10px;
        padding: 5px 14px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .ai-illustration {
        max-width: 300px;
    }
}
/* Challenges Section */
.challenges-section {
    position: relative;
    padding: 80px 0;
    background: #0c0b0e;
    overflow: hidden;
}

.challenges-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.challenges-content {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 6px 18px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.challenge-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(194, 252, 13, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.1), transparent);
    transition: left 0.5s ease;
}

.challenge-item:hover::before {
    left: 100%;
}

.challenge-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(194, 252, 13, 0.2);
    transform: translateX(5px);
}

.challenge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 10px;
    color: #C2FC0D;
}

.challenge-icon svg {
    width: 24px;
    height: 24px;
}

.challenge-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.challenge-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.challenge-arrow {
    display: flex;
    align-items: center;
    color: rgba(194, 252, 13, 0.5);
    transition: all 0.3s ease;
}

.challenge-item:hover .challenge-arrow {
    color: #C2FC0D;
    transform: translateX(5px);
}

.challenge-arrow svg {
    width: 20px;
    height: 20px;
}

.challenges-image {
    position: relative;
    z-index: 2;
}

.challenges-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenges-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(194, 252, 13, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 252, 13, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.bg-grid:nth-child(2) {
    animation-delay: 5s;
    opacity: 0.5;
}

.bg-grid:nth-child(3) {
    animation-delay: 10s;
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .challenges-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .challenge-item {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .challenges-section {
        padding: 60px 0;
    }
    
    .challenges-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .challenges-content {
        order: 1;
    }
    
    .challenges-image {
        order: 2;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .challenge-item {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }
    
    .challenge-arrow {
        grid-column: 2;
        justify-self: end;
    }
}

@media (max-width: 576px) {
    .challenges-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 5px 14px;
    }
    
    .challenge-item {
        padding: 12px;
    }
    
    .challenge-icon {
        width: 40px;
        height: 40px;
    }
    
    .challenge-icon svg {
        width: 20px;
        height: 20px;
    }
}
/* Solutions Section */
.solutions-section {
    position: relative;
    padding: 80px 0;
    background: #0c0b0e;
    overflow: hidden;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 6px 18px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(194, 252, 13, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C2FC0D, transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.solution-card:hover::before {
    transform: translateX(100%);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(194, 252, 13, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 252, 13, 0.1);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    color: #C2FC0D;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: rgba(194, 252, 13, 0.2);
    transform: scale(1.05);
}

.solution-card:hover .solution-icon svg {
    transform: rotate(5deg);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(194, 252, 13, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 252, 13, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.bg-grid:nth-child(2) {
    animation-delay: 5s;
    opacity: 0.5;
}

.bg-grid:nth-child(3) {
    animation-delay: 10s;
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .solution-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .solution-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .solution-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .solutions-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 5px 14px;
    }
    
    .solution-card {
        padding: 15px;
    }
    
    .solution-icon {
        width: 45px;
        height: 45px;
    }
    
    .solution-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .solution-card h3 {
        font-size: 16px;
    }
    
    .solution-card p {
        font-size: 13px;
    }
}
/* Industries Section */
.industries-section {
    position: relative;
    padding: 80px 0;
    background: #0c0b0e;
    overflow: hidden;
}

.industries-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 6px 18px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.industries-masonry {
    column-count: 3;
    column-gap: 30px;
    position: relative;
    z-index: 2;
}

.industry-card {
    break-inside: avoid;
    margin-bottom: 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 252, 13, 0.1);
}

.industry-card.large {
    grid-row: span 2;
}

.industry-card.medium {
    grid-row: span 1;
}

.industry-card.small {
    grid-row: span 1;
}

.industry-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.industry-card.large .industry-image {
    padding-top: 120%;
}

.industry-card.medium .industry-image {
    padding-top: 75%;
}

.industry-card.small .industry-image {
    padding-top: 60%;
}

.industry-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 11, 14, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-overlay {
    opacity: 1;
}

.view-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(194, 252, 13, 0.2);
    border: 1px solid rgba(194, 252, 13, 0.3);
    border-radius: 50%;
    color: #C2FC0D;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-image:hover {
    background: rgba(194, 252, 13, 0.3);
    transform: scale(1.1);
}

.view-image svg {
    width: 24px;
    height: 24px;
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(12, 11, 14, 0.9), transparent);
}

.industry-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-content h3 {
    transform: translateY(0);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(194, 252, 13, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 252, 13, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.bg-grid:nth-child(2) {
    animation-delay: 5s;
    opacity: 0.5;
}

.bg-grid:nth-child(3) {
    animation-delay: 10s;
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industries-masonry {
        column-count: 2;
        column-gap: 25px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-masonry {
        column-count: 2;
        column-gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .industry-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .industries-section {
        padding: 40px 0;
    }
    
    .industries-masonry {
        column-count: 1;
        column-gap: 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 5px 14px;
    }
    
    .industry-card {
        margin-bottom: 20px;
    }
    
    .industry-content h3 {
        font-size: 14px;
    }
    
    .view-image {
        width: 40px;
        height: 40px;
    }
    
    .view-image svg {
        width: 20px;
        height: 20px;
    }
}
/* Process Section */
.process-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 252, 13, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 10px 28px;
    background: rgba(194, 252, 13, 0.08);
    border: 1px solid rgba(194, 252, 13, 0.15);
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.process-flow {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

.process-item {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(194, 252, 13, 0.08);
}

.process-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(194, 252, 13, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-number {
    font-size: 42px;
    font-weight: 700;
    color: rgba(194, 252, 13, 0.25);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-item:hover .process-number {
    color: rgba(194, 252, 13, 0.4);
    transform: scale(1.1);
}

.process-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(194, 252, 13, 0.08) 0%, rgba(194, 252, 13, 0.03) 100%);
    border: 1px solid rgba(194, 252, 13, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(194, 252, 13, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.process-item:hover .process-icon::before {
    width: 120px;
    height: 120px;
}

.process-icon svg {
    width: 38px;
    height: 38px;
    color: #C2FC0D;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-item:hover .process-icon {
    transform: scale(1.05);
    border-color: rgba(194, 252, 13, 0.25);
}

.process-item:hover .process-icon svg {
    transform: rotate(5deg);
}

.process-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.process-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.process-line {
    position: absolute;
    top: 135px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(194, 252, 13, 0.15),
        rgba(194, 252, 13, 0.15),
        transparent
    );
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-items {
        gap: 30px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .process-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .process-line {
        display: none;
    }
    
    .process-number {
        font-size: 38px;
    }
    
    .process-icon {
        width: 75px;
        height: 75px;
    }
    
    .process-icon svg {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-item {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .section-description {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 8px 24px;
    }
    
    .process-number {
        font-size: 34px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .process-content h3 {
        font-size: 18px;
    }
    
    .process-content p {
        font-size: 14px;
    }
}
/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 252, 13, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 10px 28px;
    background: rgba(194, 252, 13, 0.08);
    border: 1px solid rgba(194, 252, 13, 0.15);
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(194, 252, 13, 0.08);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(194, 252, 13, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(194, 252, 13, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(194, 252, 13, 0.08) 0%, rgba(194, 252, 13, 0.03) 100%);
    border: 1px solid rgba(194, 252, 13, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(194, 252, 13, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.benefit-card:hover .benefit-icon::before {
    width: 120px;
    height: 120px;
}

.benefit-icon svg {
    width: 38px;
    height: 38px;
    color: #C2FC0D;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
    border-color: rgba(194, 252, 13, 0.25);
}

.benefit-card:hover .benefit-icon svg {
    transform: rotate(5deg);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(194, 252, 13, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 252, 13, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.bg-grid:nth-child(2) {
    opacity: 0.5;
}

.bg-grid:nth-child(3) {
    opacity: 0.3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .benefit-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .benefit-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 8px 24px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
}
/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 252, 13, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(194, 252, 13, 0.08);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.cta-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cta-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(12, 11, 14, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 252, 13, 0.3);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(194, 252, 13, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 252, 13, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.bg-grid:nth-child(2) {
    opacity: 0.5;
}

.bg-grid:nth-child(3) {
    opacity: 0.3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 42px;
    }
    
    .cta-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-button svg {
        width: 18px;
        height: 18px;
    }
}
